don't check for enabled packages in the sdk, build'em all by default
authorNicolas Thill <[email protected]>
Mon, 23 Oct 2006 20:57:35 +0000 (20:57 +0000)
committerNicolas Thill <[email protected]>
Mon, 23 Oct 2006 20:57:35 +0000 (20:57 +0000)
SVN-Revision: 5273

openwrt/package/sdk/files/include/package.mk

index 01781c71c7dd79f301c34bf99f78b44ad3d5ee80..c1811c5f27d9f65f30066006ff7c759d09f0069c 100644 (file)
@@ -132,17 +132,7 @@ define BuildPackage
   INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list
 
   ifdef Package/$(1)/install
-    ifeq ($(CONFIG_PACKAGE_$(1)),y)
-      install-targets: $$(INFO_$(1))
-    endif
-
-    ifneq ($(CONFIG_PACKAGE_$(1)),)
-      compile-targets: $$(IPKG_$(1))
-    else
-      compile-targets: $(1)-disabled
-      $(1)-disabled:
-       @echo "WARNING: skipping $(1) -- package not selected"
-    endif
+    compile-targets: $$(IPKG_$(1))
   endif
 
   ifeq ($(FORCEREBUILD),y)